home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 12 - 1996 / 12.09 Sep 96 / C++ DebugStr / doututils.h < prev    next >
Encoding:
Text File  |  1996-06-18  |  644 b   |  26 lines  |  [TEXT/R*ch]

  1. // (c) copyright 1995,1996, Jon Kalb, Liberty Software
  2. // Kalb@LibertySoft.com
  3. // You may freely incorporate this code into any machine-
  4. // readable project. You may modify this code, but you may
  5. // not remove this statement. 
  6.  
  7. #include <iostream.h>
  8.  
  9. // manipulators
  10.  
  11. ostream &showflags(ostream &stream);
  12.  
  13. // these are implemented as #defines but they could be
  14. // implemented as const or as manipulator functions
  15. #define doutbackspace    '\b'
  16. #define doutformfeed    '\f'
  17. #define doutsoftflush    '\r'
  18. #define douttab            '\t'
  19. #define doutverttab        '\v'
  20. #define doutsysbeep        '\a'
  21. #define doutdebug        '\0'
  22. #define doutdropin        '\0'
  23. #define doutcommand        ';'
  24.  
  25.  
  26.